Previous Book Contents Book Index Next

Inside Macintosh: Programming With JManager /
Chapter 2 - JManager Reference / JManager Constants and Data Types


Frame Ordering Indicators

An AWT context may request that a frame be reordered using the MyFrameReorderRequest callback. The context specifies the new placement of the frame using the ReorderRequest type.

enum ReorderRequest { 
   eBringToFront = 0, 
   eSendToBack, 
   eSendBehindFront 
};
Constant descriptions

eBringToFront
Bring the frame to the front.
eSendToBack
Send the frame to the back.
eSendBehindFront
Send the frame behind the front frame.
See the description of the function MyRequestFrame for more information about using these values.


Previous Book Contents Book Index Next

© Apple Computer, Inc.
10 DEC 1997